// Shows how to continuously transform values of OPC-UA node, and write the results into a second node.
// Requires Microsoft Reactive Extensions (Rx).
//
// Find all latest examples here: https://opclabs.doc-that.com/files/onlinedocs/OPCLabs-OpcStudio/Latest/examples.html .
using System;
using System.Reactive.Linq;
using System.Threading;
using OpcLabs.EasyOpc.UA;
using OpcLabs.EasyOpc.UA.Reactive;
namespace ReactiveDocExamples
{
namespace _UAReactive
{
class Composition
{
public static void Pipeline()
{
// Define which server we will work with.
UAEndpointDescriptor endpointDescriptor =
"opc.tcp://opcua.demo-this.com:51210/UA/SampleServer";
// or "http://opcua.demo-this.com:51211/UA/SampleServer" (currently not supported)
// or "https://opcua.demo-this.com:51212/UA/SampleServer/"
Console.WriteLine("Creating source observable...");
UADataChangeNotificationObservable<int> source =
UADataChangeNotificationObservable.Create<int>(
endpointDescriptor, "nsu=http://test.org/UA/Data/ ;i=11017", 100);
Console.WriteLine("Creating processed observable (takes valid input values and take modulo 1000)...");
IObservable<int> processed = source
.Where(e => e.Exception is null)
.Select(e => e.TypedAttributeData.TypedValue % 1000);
Console.WriteLine("Creating observer to write values into OPC node...");
UAWriteValueObserver<int> observer =
UAWriteValueObserver.Create<int>(
endpointDescriptor, "nsu=http://test.org/UA/Data/ ;i=10389");
Console.WriteLine("Monitoring changes of the target OPC node using traditional means...");
int handle = EasyUAClient.SharedInstance.SubscribeDataChange(
endpointDescriptor, "nsu=http://test.org/UA/Data/ ;i=10389",
100, (_, e) => Console.WriteLine(e.AttributeData));
Console.WriteLine("Subscribing the observer to the processed observable...");
using (processed.Subscribe(observer))
{
Console.WriteLine("Waiting for 10 seconds...");
Thread.Sleep(10 * 1000);
Console.WriteLine("Unsubscribing the observer from the processed observable...");
}
Console.WriteLine("Finalizing monitoring...");
EasyUAClient.SharedInstance.UnsubscribeMonitoredItem(handle);
Console.WriteLine("Waiting for 2 seconds...");
Thread.Sleep(2 * 1000);
}
}
}
}